home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / GNU / gnufit12gp35.lha / gnuplot / fitdemo / reflect1 < prev    next >
Text File  |  1993-06-08  |  805b  |  28 lines

  1. # set term vgabios
  2. pause -1 "first plotting the pure data set  (-> return)"
  3.  
  4. set xlabel "Delta [degrees]"
  5. set ylabel "Reflectivity"
  6. plot 'moli3.dat'
  7.  
  8. pause 0 "now fitting the model function to the data"
  9. load 'reflect.fnc'
  10.  
  11. eta = 1.2e-2
  12. tc = 1.8e-3
  13.  
  14. show variables
  15. show functions
  16. pause -1 "first a plot with all parameters set to initial values  (-> return)"
  17. plot 'moli3.dat', R(x)
  18. pause -1 "now start fitting...  (-> return)"
  19. fit R(x) 'moli3.dat' via eta, tc
  20. pause -1 "now look at the result (-> return)"
  21. plot 'moli3.dat', R(x)
  22.  
  23. pause 0  "You can have a look at all previous fit results by looking into"
  24. pause 0  "the file 'fit.log' or whatever you defined the env-variable 'FIT_LOGFILE'."
  25. pause 0  "Remember that this file will always be appended, so remove it"
  26. pause 0  "from time to time!"
  27. pause 0  ""
  28.